home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc B) / Acorn User China CD-ROM (UK) (Disc B).bin / STUTTGART / FROMUTS / UNIXLIB37B / test_c_popentest < prev    next >
Encoding:
Text File  |  1992-02-09  |  192 b   |  15 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. FILE *f;
  7. char b[256];
  8.  
  9. if (!(f = popen("min","r"))) { perror("popen()"); exit(1); }
  10.  
  11. while (fgets(b,256,f)) fputs(b,stdout);
  12.  
  13. pclose(f);
  14. }
  15.